home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit) / Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit).bin / Ubi_soft.exe / Intro2.dxr / Internal_61_Play Movie X ryan.ls < prev    next >
Encoding:
Text File  |  1999-08-18  |  1.7 KB  |  31 lines

  1. property myTargetMovie
  2.  
  3. on getBehaviorDescription me
  4.   return "PLAY MOVIE X" & RETURN & RETURN & "Drop this behavior onto  a Sprite, the Stage or into the Script Channel of the Score to start a sequence and move the playback head to a given movie." & RETURN & RETURN & "Use the 'Play Done' behavior to end the sequence and to tell the playback head to return to the current frame." & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Play which movie on mouseUp?" & RETURN & RETURN & "If the target movie is in the same folder as the current movie then you need only enter the name of the movie.  If the  movie is in a different folder, then enter the full or relative path name to  the target movie." & RETURN & RETURN & "ASSOCIATED BEHAVIORS:" & RETURN & "+ Play Frame X" & RETURN & "+ Play Done"
  5. end
  6.  
  7. on getBehaviorTooltip me
  8.   return "Use with graphic members or as a frame behavior." & RETURN & RETURN & "Jumps the playback head to the given movie.  Acts" & RETURN & "on mouseUp or on exitFrame, depending on whether" & RETURN & "you drag it to a sprite or to the Stage." & RETURN & RETURN & "Use the 'Play Done' behavior to return to this frame."
  9. end
  10.  
  11. on mouseUp me
  12.   preLoadMovie(myTargetMovie)
  13.   play movie myTargetMovie
  14. end
  15.  
  16. on exitFrame me
  17.   if the currentSpriteNum = 0 then
  18.     play movie myTargetMovie
  19.   end if
  20. end
  21.  
  22. on getPropertyDescriptionList me
  23.   if the currentSpriteNum = 0 then
  24.     theComment = "Play which movie on exitFrame?"
  25.   else
  26.     theComment = "Play which movie on mouseUp?"
  27.   end if
  28.   theComment = theComment & RETURN & "(Include path if necessary)."
  29.   return [#myTargetMovie: [#comment: theComment, #format: #movie, #default: "Type the name of your movie here"]]
  30. end
  31.